home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / RTTI / TestForm.dfm / TestForm.txt
Encoding:
Text File  |  1998-04-12  |  3.0 KB  |  172 lines

  1. object Form1: TForm1
  2.   Left = 252
  3.   Top = 212
  4.   Width = 345
  5.   Height = 332
  6.   Caption = 'RTTI Demo'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   OnDeactivate = FormDeactivate
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object lblName: TLabel
  18.     Left = 8
  19.     Top = 16
  20.     Width = 31
  21.     Height = 13
  22.     Caption = 'Name:'
  23.   end
  24.   object lblAge: TLabel
  25.     Left = 8
  26.     Top = 48
  27.     Width = 22
  28.     Height = 13
  29.     Caption = 'Age:'
  30.   end
  31.   object lblSex: TLabel
  32.     Left = 8
  33.     Top = 80
  34.     Width = 21
  35.     Height = 13
  36.     Caption = 'Sex:'
  37.   end
  38.   object btnExport: TButton
  39.     Left = 176
  40.     Top = 272
  41.     Width = 75
  42.     Height = 25
  43.     Caption = '&Export'
  44.     TabOrder = 7
  45.     OnClick = btnExportClick
  46.   end
  47.   object btnImport: TButton
  48.     Left = 96
  49.     Top = 272
  50.     Width = 75
  51.     Height = 25
  52.     Caption = '&Import'
  53.     TabOrder = 6
  54.     OnClick = btnImportClick
  55.   end
  56.   object btnExit: TButton
  57.     Left = 256
  58.     Top = 272
  59.     Width = 75
  60.     Height = 25
  61.     Caption = 'E&xit'
  62.     TabOrder = 8
  63.     OnClick = btnExitClick
  64.   end
  65.   object edtName: TEdit
  66.     Left = 96
  67.     Top = 16
  68.     Width = 233
  69.     Height = 21
  70.     TabOrder = 0
  71.     Text = 'Fred Bloggs'
  72.   end
  73.   object edtAge: TEdit
  74.     Left = 96
  75.     Top = 48
  76.     Width = 121
  77.     Height = 21
  78.     TabOrder = 1
  79.     Text = '35'
  80.   end
  81.   object cboSex: TComboBox
  82.     Left = 96
  83.     Top = 80
  84.     Width = 121
  85.     Height = 21
  86.     Style = csDropDownList
  87.     ItemHeight = 13
  88.     Items.Strings = (
  89.       'Unknown'
  90.       'Male'
  91.       'Female')
  92.     TabOrder = 2
  93.   end
  94.   object btnSQLInsert: TButton
  95.     Left = 96
  96.     Top = 240
  97.     Width = 75
  98.     Height = 25
  99.     Caption = 'S&QL Insert'
  100.     TabOrder = 3
  101.     OnClick = btnSQLInsertClick
  102.   end
  103.   object btnSQLUpdate: TButton
  104.     Left = 176
  105.     Top = 240
  106.     Width = 75
  107.     Height = 25
  108.     Caption = 'SQL &Update'
  109.     TabOrder = 4
  110.     OnClick = btnSQLUpdateClick
  111.   end
  112.   object btnSQLSelect: TButton
  113.     Left = 256
  114.     Top = 240
  115.     Width = 75
  116.     Height = 25
  117.     Caption = 'SQL &Select'
  118.     TabOrder = 5
  119.     OnClick = btnSQLSelectClick
  120.   end
  121.   object grpPets: TGroupBox
  122.     Left = 96
  123.     Top = 112
  124.     Width = 233
  125.     Height = 113
  126.     Caption = 'Pets'
  127.     TabOrder = 9
  128.     object chkDog: TCheckBox
  129.       Left = 16
  130.       Top = 16
  131.       Width = 97
  132.       Height = 17
  133.       Caption = 'Dog'
  134.       TabOrder = 0
  135.     end
  136.     object chkCat: TCheckBox
  137.       Left = 16
  138.       Top = 40
  139.       Width = 97
  140.       Height = 17
  141.       Caption = 'Cat'
  142.       TabOrder = 1
  143.     end
  144.     object chkRabbit: TCheckBox
  145.       Left = 16
  146.       Top = 64
  147.       Width = 97
  148.       Height = 17
  149.       Caption = 'Rabbit'
  150.       TabOrder = 2
  151.     end
  152.     object chkHamster: TCheckBox
  153.       Left = 16
  154.       Top = 88
  155.       Width = 97
  156.       Height = 17
  157.       Caption = 'Hamster'
  158.       TabOrder = 3
  159.     end
  160.   end
  161.   object pioImporter: TPropertyImporter
  162.     OnObjectImported = pioImporterObjectImported
  163.     Left = 8
  164.     Top = 272
  165.   end
  166.   object pioExporter: TPropertyExporter
  167.     FileName = 'C:\Temp\Export.TXT'
  168.     Left = 40
  169.     Top = 272
  170.   end
  171. end
  172.